home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE21 / CONSTRUC / OZ.DPR next >
Encoding:
Text File  |  1997-04-09  |  181 b   |  16 lines

  1. program oz;
  2. uses
  3.   Controls,
  4.   Dialogs,
  5.   Forms,
  6.   wizard in 'wizard.pas';
  7.  
  8. begin
  9.   with TWizardForm.Create(nil) do
  10.   try
  11.     ShowModal
  12.   finally
  13.     Free
  14.   end
  15. end.
  16.